home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CMCD1104.ISO / Software / Freeware / Programare / bluej / bluejsetup-200.exe / {app} / lib / swedish / templates / newclass / interface.tmpl < prev    next >
Encoding:
Text File  |  2004-09-15  |  380 b   |  19 lines

  1. $PKGLINE
  2. /**
  3.  * Write a description of interface $CLASSNAME here.
  4.  * 
  5.  * @author (your name) 
  6.  * @version (a version number or a date)
  7.  */
  8.  
  9. public interface $CLASSNAME
  10. {
  11.     /**
  12.      * An example of a method header - replace this comment with your own
  13.      * 
  14.      * @param  y    a sample parameter for a method
  15.      * @return        the result produced by sampleMethod 
  16.      */
  17.     int sampleMethod(int y);
  18. }
  19.